home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / HippoDraw / HippoDrawSrc1.1 / Hippo.subproj / InspectStat.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-25  |  1.0 KB  |  49 lines

  1. /* InspectStat.h        by Paul Kunz    December 1991
  2.  * Controls viewing of Statistics.
  3.  * 
  4.  * Copyright (C)  1991  The Board of Trustees of
  5.  * The Leland Stanford Junior University.  All Rights Reserved.
  6.  */
  7.  
  8. #define INSPECTSTAT_H_ID "$Id: InspectStat.h,v 1.4 1992/04/21 00:53:13 pfkeb Rel $"
  9.  
  10. #import "InspectBase.h"
  11.  
  12. @interface InspectStat:InspectBase
  13. {
  14.     id        statMatrix;    /* Matrix of under/in/over flows */
  15.     id        statBox;    /* Box containing statistics */
  16. }
  17.  
  18. - createImage:sender;
  19.  /*
  20.   * Creates an Image of the statistical matrix and inserts it on top
  21.   * of the selected Plot
  22.   */
  23.   
  24. - initInspFor:aDraw;
  25.  /*
  26.   * Initializes inspector for global control object aDraw
  27.   * Adds itself to Inspector Panel when done.
  28.   */
  29.   
  30. - clearStats;
  31.  /*
  32.   * Clears the statistics display in the inspector View
  33.   */
  34.   
  35. - showStats;
  36.  /*
  37.   * Updates inspector view to show statistics of selected plot
  38.   */
  39.  
  40. - updateView;
  41.  /*
  42.   * Updates the Inspector's content View.
  43.   */
  44. - updateEmptySelection;
  45.  /*
  46.   * Updates the Inspector's content View when there is no selection.
  47.   */
  48. @end
  49.